home *** CD-ROM | disk | FTP | other *** search
- ;
- ; QPV/386 driver for SVGA cards with Realtek RTG 3105 chipset
- ; and probably other Realtek chips. (This was actually written for a
- ; PT-505 with 512k, but should work with any RTG 3105 compatible card.)
-
- ; By Christopher L. Tumber
- ; aa993@freenet.carleton.ca
-
- .286
- Code Segment Para 'Code'
- Assume cs:Code
- Org 100h
-
- Procs dw Bank,Init,Exit,0
-
- Bank:
- mov dx,3d7h ;RTG CPU R/W port
- out dx,al
- retf
-
- Init:
- retf
-
- Exit:
- retf
-
- Code Ends
- End Procs
-
- ; Whew! Complicated eh?
-